home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / stat.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  202b  |  11 lines

  1. #include <lib.h>
  2. #include <sys/stat.h>
  3.  
  4. PUBLIC int stat(name, buffer)
  5. _CONST char *name;
  6. struct stat *buffer;
  7. {
  8.   return(callm1(FS, STAT, len(name), 0, 0,
  9.           (char *)name, (char *)buffer, NIL_PTR));
  10. }
  11.